dictionary - python

description
No value
aliases
No value
tags
No value
created
2023-05-17T23:49:37
updated
2023-07-15T21:30:20
title
dictionary - python

Dictionary

Dictionary Iteration and Unpacking

for key, value in d.items():
    print(f'key: {key}, value: {value}')
a = 10
b = 15
a, b = b, a